Using the Image node

Use the Image node to show a bitmap image.

Use image files to bring bitmap assets to Kanzi Studio. You can import images to Kanzi in these file formats:

For optimal application performance, make sure that you correctly set up the images in your Kanzi Studio project. See Images and textures best practices.

Creating an Image node

To create an Image node:

  1. In the Assets window click Import Assets.
  2. Select the files you want to import and click Open.
  1. Drag an image from the Assets and drop either in the Preview or any 2D node in the scene graph in the Project.
  2. (Optional) For the image you use you can set the target format that is the most suitable for your application. See Setting the target format for an image.

or

  1. In the Project press Alt and right-click the node where you want to create an Image node and select Image.
    Note that you can create a 3D node only inside 3D nodes, and 2D node only inside 2D nodes.
  2. In the Properties set the Image property to the image you want the Image node to show.
    The Image node inherits the width and height from the image set in the Image property. To set a different size, add and set properties:
  3. (Optional) Set the image position by setting the Horizontal Alignment and Vertical Alignment properties.
  4. (Optional) For the image you use you can set the target format that is the most suitable for your application. See Setting the target format for an image.

Setting the target format for an image

When you export your project to a kzb file, Kanzi Studio reads the images in the project using the format of the original image and writes the images to a kzb file in the format you set with the Target Format property for each image.

If the file format of the original image is the same as the format you select in the Target Format property, Kanzi Studio does not modify the image when it writes the image to a kzb file under these conditions:

If your image is in JPEG or PNG format and you do not want Kanzi Studio to modify the image that it exports to a kzb file, in the image Properties enable the Use Original Image property.

To set the image target format:

  1. In the Library > Resource Files > Images select the image for which you want to set the target format.
  2. In the Properties set the Target Format property to the image format you want to use in your Kanzi application.
    The format you select is important because this influences the size of the kzb file and the loading time when your Kanzi application needs the resource. Make sure that your target device supports the target format you select for the image. See Images and textures best practices.
  3. If the image format you selected in the previous step supports compression, select the compression scheme you want to use. See Compressing textures.

Using the PNG compression

When you use PNG compression keep in mind that because the compressed PNG images do not go to the GPU in compressed format, PNG compression affects the loading of a PNG image data from a kzb file to the device memory.

Use PNG compression to store and load images from a kzb file. To improve the performance of your application consider using an image format which Kanzi can send compressed directly to the device GPU. See Compressing textures.

To use the PNG compression:

  1. In Kanzi Studio in the Library select Resource Files > Images, and select the image for which you want to apply compression.
  2. In the Properties set the Target Format to PNG.
  3. In the Properties set the PNG Compression Level property to the compression you want to use for this image:
    TIP

    You can set the value of the PNG Compression Level property in the Project > Properties and in the properties for each image file.

Applying custom rendering to an Image node

Apply custom rendering to Image nodes to create post-processing effects. For example, you can convert color images in a 2D node to grayscale.

To apply custom rendering to a 2D node, use the Foreground Brush property to render the node on the screen with a Material Brush.

To apply custom rendering to an Image node:

  1. Create a material type that defines the material with which you want to apply custom rendering.
    For example, to create a material type that converts color to grayscale:
    1. In the Library press Alt and right-click Materials and Textures and select Material Type.
    2. In the Library > Materials and Textures expand the material type you created, double-click the Vertex Shader to open it in the Shader Source Editor, replace the existing shader code with this code, and save the shader.
      attribute vec3 kzPosition;
      attribute vec2 kzTextureCoordinate0;
      uniform highp mat4 kzProjectionCameraWorldMatrix;
      
      varying mediump vec2 vTexCoord;
      
      void main()
      {
          precision mediump float;
          vTexCoord = kzTextureCoordinate0;
          gl_Position = kzProjectionCameraWorldMatrix * vec4(kzPosition.xyz, 1.0);
      }
    3. Open the Fragment Shader, replace the existing shader code with this code, and save the shader.
      In the shader use the Kanzi default uniform ContentTexture which defines the texture that the rendered node provides when rendering. See Shader uniforms.
      uniform sampler2D ContentTexture;
      varying mediump vec2 vTexCoord;
      
      void main()
      {
          precision mediump float;
          // Use this algorithm to convert the colors in the texture used by
          // the Image node to grayscale.
          float grayscale = dot(texture2D(ContentTexture, vTexCoord).rgb, vec3(0.21, 0.72, 0.07));
          gl_FragColor = vec4(grayscale, grayscale, grayscale, 1.0);
      }
  2. Create a material and set it to use the material type you created in the previous step:
    1. In the Library press Alt and right-click Materials and Textures and select Material.
    2. In the Properties set the Material Type property to the material type you created in the previous step.
  3. In the Library press Alt and right-click Materials and Textures, select Material Brush, and set it to use the material you created in the previous step.
  4. In the Project create or select the Image node to which you want to apply the material you created, and set the node to display an image.
  5. In the Properties add and set the Foreground Brush property of the Image node to the material brush that uses the material you want to apply to that node.

Setting the appearance of an Image node

To set the appearance of 2D nodes:

Using the Image node in the API

For details, see the Image2D class in the API reference.

See also

Using mipmaps

Images and textures best practices

Using triggers